dcmtk-www removed
authorGert Wollny <gw.fossdev@gmail.com>
Tue, 1 Dec 2015 04:24:42 +0000 (05:24 +0100)
committerGert Wollny <gw.fossdev@gmail.com>
Tue, 1 Dec 2015 04:24:42 +0000 (05:24 +0100)
Upstream removed support for the www component and consequently the
according package was removed.

debian/apache.conf [deleted file]
debian/control
debian/dcmtk-www.README.Debian [deleted file]
debian/dcmtk-www.dirs [deleted file]
debian/dcmtk-www.docs [deleted file]
debian/dcmtk-www.install [deleted file]
debian/dcmtk-www.links [deleted file]
debian/dcmtk-www.postinst [deleted file]
debian/dcmtk-www.postrm [deleted file]

diff --git a/debian/apache.conf b/debian/apache.conf
deleted file mode 100644 (file)
index 39a5efa..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-# dcmtk default Apache configuration
-
-Alias       /dcmtk_wlm /usr/share/dcmtk/www/
-ScriptAlias /dcmtk     /usr/lib/dcmtk/cgi-bin/
-
-<Directory "/usr/lib/dcmtk/cgi-bin">
-    AllowOverride None
-    Options +ExecCGI
-</Directory>
index fb53c1a0c49d2c966f75cc2dc87e5a0f3d869b33..5e913e90499b6a7c2bd930ddcdb1781d87c2d703 100644 (file)
@@ -84,24 +84,6 @@ Description: OFFIS DICOM toolkit development libraries and headers
  .
  Note: This version was compiled with libssl support.
 
-Package: dcmtk-www
-Architecture: any
-Section: web
-Depends: dcmtk,
-         ${misc:Depends},
-         ${perl:Depends},
-         ${shlibs:Depends}
-Recommends: apache2 | httpd
-Description: OFFIS DICOM toolkit worklist www server application
- DCMTK includes a collection of libraries and applications for examining,
- constructing and converting DICOM image files, handling offline media,
- sending and receiving images over a network connection, as well as
- demonstrative image storage and worklist servers.
- .
- This package contains the DICOM basic worklist management web server
- application. You only need to install this if you want to manage worklist
- entries using a web browser.
-
 Package: dcmtk-doc
 Architecture: all
 Section: doc
diff --git a/debian/dcmtk-www.README.Debian b/debian/dcmtk-www.README.Debian
deleted file mode 100644 (file)
index bd1bf26..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-Web interface for the OFFIS DICOM ToolKit in Debian
-===================================================
-
-Please make sure you read the file wwwapp.txt in this directory.
-
-Hint: Apache is configured in this way that you can either
-      point your browser to
-      
-        http://localhost/cgi-bin/dcmtk_wlm/main.pl
-
-      or
-
-        http://localhost/dcmtk_wlm/main.pl
diff --git a/debian/dcmtk-www.dirs b/debian/dcmtk-www.dirs
deleted file mode 100644 (file)
index fcd2489..0000000
+++ /dev/null
@@ -1 +0,0 @@
-/etc/apache2/conf-available
diff --git a/debian/dcmtk-www.docs b/debian/dcmtk-www.docs
deleted file mode 100644 (file)
index a20f6ea..0000000
+++ /dev/null
@@ -1 +0,0 @@
-dcmwlm/docs/wwwapp.txt
diff --git a/debian/dcmtk-www.install b/debian/dcmtk-www.install
deleted file mode 100644 (file)
index eff3c32..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-debian/apache.conf              etc/dcmtk
-usr/bin/preplock    usr/lib/dcmtk/cgi-bin
-usr/bin/readoviw    usr/lib/dcmtk/cgi-bin
-usr/bin/readwlst    usr/lib/dcmtk/cgi-bin
-usr/bin/writwlst    usr/lib/dcmtk/cgi-bin
diff --git a/debian/dcmtk-www.links b/debian/dcmtk-www.links
deleted file mode 100644 (file)
index 9343367..0000000
+++ /dev/null
@@ -1 +0,0 @@
-usr/lib/dcmtk/cgi-bin usr/lib/cgi-bin/dcmtk_wlm
diff --git a/debian/dcmtk-www.postinst b/debian/dcmtk-www.postinst
deleted file mode 100644 (file)
index 1c1438a..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/sh -e
-# postinst script for dcmtk-www
-
-pkg=dcmtk
-
-apache_install() {
-        webserver=apache2
-        if [ -d /etc/$webserver/conf-available ] && [ ! -e /etc/$webserver/conf-available/${pkg}.conf ]; then
-                ln -s ../../${pkg}/apache.conf /etc/$webserver/conf-available/${pkg}.conf
-               # Restart webserver to register configuration for dcmtk if config is considered to be OK
-               if ${webserver}ctl configtest 2>/dev/null; then
-                   if which invoke-rc.d ; then
-                       invoke-rc.d $webserver reload 3>/dev/null || true
-                   else
-                       /etc/init.d/$webserver reload 3>/dev/null || true
-               fi
-        else
-            echo "Your $webserver configuration is broken, so we're not restarting it for you."
-        fi
-
-        fi
-}
-
-case "$1" in
-    configure)
-       apache_install
-    ;;
-
-    abort-upgrade|abort-remove|abort-deconfigure)
-    ;;
-
-    *)
-        echo "postinst called with unknown argument \`$1'" >&2
-        exit 1
-    ;;
-esac
-
-#DEBHELPER#
-
-exit 0
diff --git a/debian/dcmtk-www.postrm b/debian/dcmtk-www.postrm
deleted file mode 100644 (file)
index 0db3f28..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/sh
-# postrm script for dcmtk-www
-
-set -e
-
-pkg=dcmtk
-
-case "$1" in
-    purge|remove|upgrade)
-        # Restart Apache to register configuration for dcmtk
-        if [ "$1" = "purge" ] ; then
-            if [ -L /etc/apache2/conf-available/${pkg}.conf ] ; then
-                rm -f /etc/apache2/conf-available/${pkg}.conf
-            fi
-        fi
-        if apache2ctl configtest 2>/dev/null; then
-            if which invoke-rc.d ; then
-                invoke-rc.d apache2 reload 3>/dev/null || true
-            else
-                /etc/init.d/apache2 reload 3>/dev/null || true
-            fi
-        else
-            echo "Your apache2 configuration is broken, so we're not restarting it for you."
-        fi
-    ;;
-
-    failed-upgrade|abort-install|abort-upgrade|disappear)
-    ;;
-
-    *)
-        echo "postrm called with unknown argument \`$1'" >&2
-        exit 1
-    ;;
-esac
-
-#DEBHELPER#
-
-exit 0